home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / stdg44.exe / lha / STDC.H < prev    next >
C/C++ Source or Header  |  1994-01-10  |  581b  |  34 lines

  1. /*
  2.  * stdc
  3.  * ----
  4.  * Contains #includes for all the necessary standard include files.
  5.  *
  6.  */
  7.  
  8. #ifndef _U_H
  9. #define _U_H
  10.  
  11. typedef unsigned char   uchar;
  12. typedef unsigned short  ushort;
  13. typedef unsigned int    uint;
  14. typedef unsigned long   ulong;
  15.  
  16. #endif
  17.  
  18. #include <assert.h>
  19. #include <ctype.h>
  20. #include <errno.h>
  21. #include <float.h>
  22. #include <limits.h>
  23. #include <locale.h>
  24. #include <math.h>
  25. #include <setjmp.h>
  26. #include <signal.h>
  27. #include <stdarg.h>
  28. #include <stddef.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <time.h>
  33.  
  34.